EM FHPath/de

Other languages:

EM FHPath

Menu location
EM → FHPath
Workbenches
EM
Default shortcut
E T
Introduced in version
0.17
See also
EM FHNode, EM FHSegment

Beschreibung

Das Werkzeug FHPath fügt ein FHPath-Objekt ein, das aus einem Satz von FastHenry-Segmenten entlang eines Pfades besteht.

FastHenry FHPath

Anwendung

The FHPath object can be based on any shape containing edges, but the FHPath object is designed to work best with the support of a sketch or a wire.

  1. Select one or multiple object(s) containing edges.
  2. Press the EM FHPath button, or press E then T keys. As many FHPath objects will be created as the selected objects.

Remarks:

Eigenschaften

Skripten

Siehe auch: FreeCAD Grundlagen Skripten.

Das Objekt FHPath kann in Makros und von der Python-Konsole aus mit der folgenden Funktion verwendet werden:

path = makeFHPath(baseobj=None,name='FHPath')

Beispiel:

import FreeCAD, EM
from FreeCAD import Base
import Part, PartGui
spiral = App.ActiveDocument.addObject("Part::Spiral","Spiral")
spiral.Growth=1.00
spiral.Rotations=4.00
spiral.Radius=1.00
spiral.Placement=Base.Placement(Base.Vector(0.00,0.00,0.00),Base.Rotation(0.00,0.00,0.00,1.00))
spiral.Label='Spiral'

fhpath = EM.makeFHPath(spiral)
fhpath.Discr = 40
App.ActiveDocument.recompute()